.filtres-container,
.tris-container {
    position: relative;
    width: 200px;
    height: 49px;
}
.filtres-content {
    width: 200px;
    height: 49px;
    border-radius: 4px;
    background-color: #D34B34;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transition: var(--transitionContainer);
}
.filtres-content.active {
    z-index: 1;
    width: 322px;
    height: 547px;
    border: 3px solid #1C1C1C;
}
.filtres-content > div {
    width: 322px;
    height: 547px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filtres-titre,
.tris-titre {
    align-self: flex-start;
    width: 200px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    font-family: 'Hansief Rough';
    text-transform: uppercase;
    transition: var(--transitionContainer);
}
.filtres-titre img,
.tris-titre img {
    margin-right: 8px;
}
.filtres-content.active .filtres-titre,
.tris-content.active .tris-titre {
    margin: 20px 0;
}

.filtres-liste {
    width: 288px;
    height: 370px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.filtres-liste::-webkit-scrollbar,
.tris-liste::-webkit-scrollbar {
    width: 6px;
}
.filtres-liste::-webkit-scrollbar-track,
.tris-liste::-webkit-scrollbar-track {
    background-color: transparent;
}
.filtres-liste::-webkit-scrollbar-thumb,
.tris-liste::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #ffffffA0;
}

.filtres-filtre,
.tris-tri {
    padding: 5px 8px;
    max-width: 288px;
    border-radius: 0 4px 0 4px;
    border: 1px solid white;
    font-size: 18px;
    font-family: 'OpenSans-Regular';
    color: white;
}
.filtres-filtre:nth-child(n+2),
.tris-tri:nth-child(n+2) {
    margin-top: 8px;
}

.filtres-filtre.selected,
.tris-tri.selected {
    background-color: white;
    color: #D34B34;
}

.filtres-valider {
    margin-top: 24px;
    width: 288px;
    height: 50px;
    border-radius: 4px;
    background-color: #1C1C1C;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'OpenSans-SemiBold';
    font-size: 29px;
}


.tris-content {
    width: 200px;
    height: 49px;
    border-radius: 4px;
    background-color: #D34B34;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    transition: var(--transitionContainer);
}
.tris-content.active {
    z-index: 1;
    width: 322px;
    height: 373px;
    border: 3px solid #1C1C1C;
}
.tris-content > div {
    width: 322px;
    height: 373px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tris-liste {
    width: 288px;
    height: 270px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.filtres-select {
    width: 286px;
    height: 34px;
    border: 1px solid white;
    border-radius: 0 4px 0 4px;
    margin: 5px 0;
    text-transform: uppercase;
    overflow: hidden;
    color: white;
    font-family: 'OpenSans-Regular';
}
.filtres-select-entete {
    height: 34px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 25px;
}
.filtres-select-entete img {
    margin-left: 8px;
    width: 11px;
}
.filtres-select-options-container {
    max-height: 120px;
    overflow-y: auto;
}
.filtres-select-options-container::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}
.filtres-select-options-container::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #ffffffA0;
}
.filtres-select-options-option {
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-width: 1px 0 0 0;
    border-color: white;
    border-style: solid;
    text-align: center;
    font-size: 15px;
    overflow: hidden;
}
.filtres-select-options-option.selected {
    background-color: white;
    color: #D34B34;
}